home *** CD-ROM | disk | FTP | other *** search
/ 9-Digit Zip Code Directory / 9-Digit Zip Code Directory (American Business Information) (ABIZIP-12).ISO / z4src.zip / BSDLLW.C < prev    next >
C/C++ Source or Header  |  1993-08-22  |  2KB  |  66 lines

  1. //----------------------------------------------------------------------------
  2. //                            MODULE DESCRIPTION
  3. //
  4. //  Module:    bsdllw.c
  5. //   Title:    Base library
  6. //  Notice:    John M. Weeder
  7. //                 Copyright (c) 1993. All rights reserved.
  8. //             This module contains proprietary information and should be 
  9. //                treated as confidential.
  10. //
  11. //----------------------------------------------------------------------------
  12. //                           MAINTENANCE HISTORY
  13. //
  14. // $Workfile$
  15. // $Revision$
  16. //   $Author$
  17. //     $Date$
  18. //      $Log$    
  19. //
  20. //----------------------------------------------------------------------------
  21. //                             MODULE NARRATIVE
  22. //
  23. //
  24. //    This module contains .
  25. //
  26. //    The code in this module should be written entirely in C. 
  27. //    Do not use any C++ constructs.
  28. //
  29. //    This module is portable to:
  30. //        DOS 3.X+
  31. //        MS Windows 3.X+
  32. //        OS/2 2.X+
  33. //        OS/2 2.0 PM
  34. //        SCO UNIX.
  35. //
  36. //    The following compilers are supported:
  37. //        MSC 6.0A
  38. //        MSC/C++ 7.0
  39. //        Borland C++ 3.1 for DOS
  40. //        Borland C++ 1.0 for OS/2 2.X
  41. //        SCO UNIX cc
  42. //
  43. //----------------------------------------------------------------------------
  44. #include <bs.h>
  45. #if OS_WINDOWS && COMPILE_DLL
  46.  
  47.  
  48. //----------------------------------------------------------------------------
  49. //   Description:    Entry point for windows DLL
  50. //    Parameters:
  51. //       Returns:    
  52. //----------------------------------------------------------------------------
  53. int FAR PASCAL _EXPORT_ LibMain(HINSTANCE hInstance, WORD wDataSeg,
  54.     WORD wHeapSize, LPSTR lpszCmdLine)
  55. {
  56.         NOTUSED(hInstance);
  57.         NOTUSED(wDataSeg);
  58.         NOTUSED(wHeapSize);
  59.         NOTUSED(lpszCmdLine);
  60.         return 1;                           // Success (or 0 for Failure)
  61. }
  62. //----------------------------------------------------------------------------
  63. //------------------------------- End of File --------------------------------
  64. //----------------------------------------------------------------------------
  65. #endif                                             // OS_WINDOWS
  66.